home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Arsenal / OS2 Arsenal v1.0 (Disc 1)(Arsenal Computer).ISO / os2_drvr / reserv.txt < prev    next >
Text File  |  1995-01-02  |  3KB  |  51 lines

  1.  
  2.  basedev=reserve.sys  arguments                                          
  3.                                                                          
  4.                                                                          
  5.                                                                          
  6.  switch       format       example       description                     
  7.  ----------  ----------  -----------   -------------------------------   
  8.  
  9.   /IO:       /IO:x,x    /IO:340,4      Reserve IO ports. First number is base  
  10.                                        port in HEX, followed by length (number 
  11.                                        of ports) in hex.
  12.   /P:        same as /IO:                                                      
  13.                                                                                
  14.                                                                                
  15.   /MEM:      /MEM:x,x   /MEM:CA00,1000 Reserve Memory. First number is base 
  16.                                        memory address (HEX), with the          
  17.                                        assumption that the address is XXXX:0, 
  18.                                        followed by the length (number of address)
  19.                                        in hex.
  20.                                                                                
  21.   /DMA:      /DMA:x       /DMA:2       Reserve DMA Channel.  Number is decimal.
  22.                                                                                
  23.                                                                                
  24.   /IRQ:      /IRQ:x       /IRQ:13      Reserve IRQ.  Number is decimal.        
  25.  
  26.                                                                               
  27.   /EXC       /EXC         /EXC         Exclusive resource attribute           
  28.   /MUL       /MUL         /MUL         Multiplexed resource attribute         
  29.   /SHA       /SHA         /SHA         Shared resource attribute              
  30.   /GY        /GY          /GY          Grant Yield resource attribute         
  31.                                                                               
  32.   /DW:       /DW:x        /DW:10       Decode width of IO address.  Valid     
  33.                                        numbers are 10 and 16.  Only valid with
  34.                                        /IO: switch.                           
  35.                                                                               
  36. Note: more than one resource attribute per resource entry is an error and not 
  37.       allowed.  If no attributes or decode width is set, the default is      
  38.       EXCLUSIVE and 16.                                                       
  39.                                                                               
  40.                                                                               
  41. Example:  Want to reserve 
  42.           IRQ 13 EXCLUSIVE, 
  43.           DMA 0 SHARED, 
  44.           MEMORY CA00:0 for 1000 bytes shared, 
  45.           IO ports 340 for 10 ports EXCLUSIVE and decode width 16, 
  46.           and IO ports 300 for 64 ports Grant Yield, with a decode width of 10:                                                       
  47.                                                                              
  48. BASEDEV=RESOURCE.SYS /IRQ:13 /DMA:0 /SHA /MEM:CA00,3E8 /SHA /IO:340,A
  49.                      /IO:300,100 /GY /DW:10
  50.  
  51.